home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / rpc_amd.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  82 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # Script audit and contributions from Carmichael Security <http://www.carmichaelsecurity.com>
  5. #      Erik Anderson <eanders@carmichaelsecurity.com>
  6. #      Added BugtraqID and CVE. Changed description to match version
  7. #
  8. # See the Nessus Scripts License for details
  9. #
  10.  
  11. if(description)
  12. {
  13.  script_id(10211);
  14.  script_bugtraq_id(614);
  15.  script_version ("$Revision: 1.12 $");
  16.  script_cve_id("CVE-1999-0704");
  17.  
  18.  name["english"] = "amd service";
  19.  name["francais"] = "Service amd";
  20.  script_name(english:name["english"], francais:name["francais"]);
  21.  
  22.  desc["english"] = "
  23. The amd RPC service is running. 
  24. There is a bug in older versions of
  25. this service less than am-utils-6.0.1 that allow an intruder to
  26. execute arbitrary commands on your system.
  27.  
  28. Risk factor : High";
  29.  
  30.  
  31.  desc["francais"] = "
  32. Le service RPC amd tourne.
  33. Il y a un bug dans certaines versions
  34. de ce service qui permettent α un pirate
  35. d'executer des commandes arbitraires sur
  36. votre systΦme.
  37.  
  38.  
  39. Facteur de risque : ElevΘ";
  40.  
  41.  
  42.  script_description(english:desc["english"], francais:desc["francais"]);
  43.  
  44.  summary["english"] = "checks the presence of a RPC service";
  45.  summary["francais"] = "vΘrifie la prΘsence d'un service RPC";
  46.  script_summary(english:summary["english"], francais:summary["francais"]);
  47.  
  48.  script_category(ACT_GATHER_INFO);
  49.  
  50.  
  51.  script_copyright(english:"This script is Copyright (C) 1999 Renaud Deraison",
  52.         francais:"Ce script est Copyright (C) 1999 Renaud Deraison");
  53.  family["english"] = "RPC"; 
  54.  family["francais"] = "RPC";
  55.  script_family(english:family["english"], francais:family["francais"]);
  56.  script_dependencie("rpc_portmap.nasl");
  57.  script_require_keys("rpc/portmap");
  58.  exit(0);
  59. }
  60.  
  61. #
  62. # The script code starts here
  63. #
  64.  
  65. include("misc_func.inc");
  66.  
  67.  
  68.  
  69. RPC_PROG = 300019;
  70. tcp = 0;
  71. port = get_rpc_port(program:RPC_PROG, protocol:IPPROTO_UDP);
  72. if(!port){
  73.     port = get_rpc_port(program:RPC_PROG, protocol:IPPROTO_TCP);
  74.     tcp = 1;
  75.     }
  76.  
  77. if(port)
  78. {
  79.  if(tcp)security_hole(port);
  80.  else security_hole(port, protocol:"udp");
  81. }
  82.